operator >>> method Null safety
- int shiftAmount
Bitwise unsigned right shift by shiftAmount bits.
NOT IMPLEMENTED YET.
The least significant shiftAmount bits are dropped,
the remaining bits (if any) are shifted down,
and zero-bits are shifted in as the new most significant bits.
The shiftAmount must be non-negative.
Implementation
int operator >>>(int shiftAmount);